What's a Recursive method? method that calls itself (either directly or indirectly) Why are recursive methods useful? 1. many data structures are recursive in nature 2. some algorithms are most easily expressed with recursion 3. recursion is fun! What are some structures that are not naturally recursive? lists What are some structures that are naturally recursive? expressions file system folders